home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TGCBOR20.ARJ / README.TXT < prev    next >
Text File  |  1991-08-30  |  6KB  |  158 lines

  1.             TEGL WINDOWS TOOLKIT II Release 2.0 Intro Pack
  2.  
  3.                Copyright 1991 TEGL SYSTEMS CORPORATION
  4.                          All rights reserved.
  5.  
  6.  
  7. This introductory package is for letting interested programmers try
  8. out the TEGL WINDOWS TOOLKIT II before buying. You may use to create
  9. programs on a trial basis. You may not sell or give away any programs
  10. that use any portion of this toolkit.
  11.  
  12. This distribution contains virtually all the features of our commercial
  13. version. It lacks: source code and documentation (we have provided
  14. sample programs and a quick guide). Programs created from this intro
  15. pack will display a copyright notice when they finish, a button with the
  16. copyright is always installed in the application and if a program is run
  17. for more than 20 minutes a copyright notice will appear.
  18.  
  19. This package may be distributed freely provided all files are included
  20. and the distribution is not changed in any way.
  21.  
  22. Buy the TEGL WINDOWS TOOLKIT II and you will receive:
  23.  
  24.        * latest version, with COMPLETE SOURCE CODE
  25.        * Reference manual
  26.        * Technical support
  27.        * Royalty free distribution rights on compiled applications
  28.  
  29. The TEGL WINDOWS TOOLKIT II Release 2.0 contains the following:
  30.  
  31.        * graphics interface (TGI), a replacement for the BGI
  32.          thats 2-6x faster.
  33.        * virtual memory manager (use EMS and hard disk)
  34.        * window manager
  35.        * event programming
  36.        * icon editor
  37.        * font editor
  38.        * world coordinates
  39.        * dialogue management
  40.        * supports CGA, Hercules, EGA, VGA and SuperVGA
  41.        * supports 256 colors (up to 1024x768)
  42.        * 40+ fonts
  43.  
  44.  
  45. This distribution contains no executable files. It is assumed that you
  46. have the target compiler and can compile the example programs yourself.
  47.  
  48. Files in this distribution:
  49.        readme.txt      This file
  50.        intropak.com    Self extracting archive (contains example programs)
  51.        tutor.com       Self extracting archive (contains example programs
  52.                        and tutorial instuctions).
  53.        header.com      Self extracting archive of the teglsys.h header file.
  54.  
  55.        ONE (or all of)
  56.        tclib.exe       Self extracting archive for Turbo C 2.0
  57.                        Turbo C++ 1.0 and Borland C++ 2.0
  58.        mslib.exe       Self extracting archive for Quick C 2.0 (& later)
  59.                        Microsoft C 5.1 & 6.0
  60.  
  61. INSTALLATION
  62.  
  63.        To install the intro pack just copy intropak.com, tutor.com,
  64.        header.com and the appropriate library archive to a
  65.        subdirectory on your harddrive then run each program.
  66.        Running these programs extracts them to the disk. After it
  67.        has run you will have over a 100 files taking up more than a
  68.        megabyte of disk space. You don't have to extract them all
  69.        into the same directory, its up to you.
  70.  
  71.        The tutorial files contain embedded example files that can
  72.        be extracted using the extract.exe untiliy. There is also a
  73.        batch file called 'exall.bat' that will extract all the
  74.        example files from the tuturial.
  75.  
  76.        The files are:
  77.  
  78.        *.c             Example programs
  79.        teglsys.h       The header file for the library
  80.        teglsys.lib     The TEGL WINDOWS TOOLKIT II library.
  81.        examples.txt    A list of the example programs with a note on
  82.                        what aspect they illustrate.
  83.        extract.exe     Program to extract example files
  84.        order.txt       An order form.
  85.        quick.txt       A quick overview of the system.
  86.        menus.txt       The menuing system
  87.        buttons.txt     How to use Square buttons
  88.        picklist.txt    How to use picklists
  89.        frames.txt      Introduction to frames
  90.        twquick.txt     Quick introduction to the high level windows.
  91.  
  92. COMPILING THE PROGRAMS:
  93.  
  94. ONLY THE LARGE MEMORY MODEL IS SUPPORTED. Be sure to set this in the
  95. integrated environment, the batch files use the command line toggle.
  96. Additionally, byte alignment is used, word alignment with cause the
  97. programs to hang.
  98.  
  99. We have provided a number of batch files for compiling the demo programs
  100. using the command line compiler(s). They are:
  101.  
  102. tc2comp.bat    - Turbo C 2.0
  103. tcccomp.bat    - Turbo C++ 1.0
  104. bcccomp.bat    - Borland C++ 1.0
  105. qc2comp.bat    - Quick C 2.0 (& later)
  106. msccomp.bat    - Microsoft C 5.1 & 6.0
  107.  
  108. There are a NUMBER OF ASSUMPTIONS made in these batch files.
  109.  
  110.        1. The compiler is in the path.
  111.        2. The teglsys.h and teglsys.lib are either in the current
  112.           directory or in the compiler's directory.
  113.  
  114. The Turbo and Borland compilers search for a file named 'turboc.cfg' in
  115. the directory they are started from. This file contains directives for
  116. locating where header files and libary files are located. We assume that
  117. you have set these.
  118.  
  119.  
  120. Since the Microsoft compiler and linker use environment variables to
  121. determine the where header files and library files are to be found you
  122. must edit these to reflect how you system is set up.
  123.  
  124. TURBO AND BORLAND INTEGRATED ENVIRONMENTS:
  125.  
  126. To compile under the integrated environment you must create a project file
  127. and name 'teglsys.lib' as part of it.
  128.  
  129. Depending on the amount of memory available in your system you may be able
  130. to run some of the programs under the integrated environment. HINTS: be
  131. sure debugging is off, and you may want to set the maxwindowsize variable
  132. to a value of 16000. The protected mode compiler (bcx) usually has enough
  133. memory to run these programs.
  134.  
  135. We have found the integrated environments tend to hang easily, don't be
  136. surprised.
  137.  
  138. QUICK C INTEGRATED ENVIRONMENT:
  139.  
  140. The 'telgsys.h' header file is greater than the capacity of the Quick
  141. C integrated environment. Complain to Microsoft. Only the command line
  142. compiler can be used.
  143.  
  144.  
  145.  
  146. -----------------------------------------------------------------------------
  147.  
  148.                        TEGL SYSTEMS CORPORATION
  149.                   Suite 780, 789 West Pender Street
  150.                      Vancouver, British Columbia
  151.                             Canada V6C 1H2
  152.                          Phone (604) 669-2577
  153.                        Facsimile (604) 688-9530
  154.                    Technical Support (604) 681-0914
  155.  
  156.  
  157.  
  158.